home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 11
/
PC World Interactive 11.iso
/
share
/
multimed
/
MAINACT
/
DATA1.CAB
/
Script_Files
/
play.rex
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-05-04
|
1KB
|
23 lines
/**************************************************************
* *
* MainActor Rexx Script *
* *
* Plays the current project in window mode, restores *
* old settings when finished. *
* *
* Last modified: 09/23/97, Written by: Markus Moenig *
* *
**************************************************************/
IF GetGlobalInfo("LOADEDPROJECTS")= "0" THEN DO /* Check if there are */
BEGIN /* any projects loaded */
say "No project loaded! Exiting ..." /* No project, exit */
exit
END
oldfs_sett=SetPlaybackConfig("FULLSCREEN", "OFF" ) /* Disable FullScreen mode */
PlayProject() /* Play it ... */
SetPlaybackConfig("FULLSCREEN", oldfs_sett) /* Restore old settings ... */